home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / powerd / modules.lha / modules / gadgets / space.m < prev    next >
Encoding:
Text File  |  2002-01-13  |  1.5 KB  |  40 lines

  1. /*
  2. **  $VER: space.h 44.1 (19.10.1999)
  3. **  Includes Release 44.1
  4. **
  5. **  Definitions for the space.gadget BOOPSI class
  6. **
  7. **  (C) Copyright 1987-1999 Amiga, Inc.
  8. **      All Rights Reserved
  9. */
  10. /*****************************************************************************/
  11. /* Additional attributes defined by the space.gadget class
  12.  */
  13. #define SPACE_Dummy       (REACTION_Dummy + $9000)
  14. #define SPACE_MinHeight     (SPACE_Dummy+1)
  15. /* (WORD) Height of space gadget
  16.      * (OM_NEW,OM_SET,OM_UPDATE,OM_GET) */
  17. #define SPACE_MinWidth    (SPACE_Dummy+2)
  18. /* (WORD) Width of space gadget
  19.      * (OM_NEW,OM_SET,OM_UPDATE,OM_GET) */
  20. #define SPACE_MouseX    (SPACE_Dummy+3)
  21. /* (WORD) X Position of Mouse within space gadget
  22.      * (OM_NOTIFY) */
  23. #define SPACE_MouseY    (SPACE_Dummy+4)
  24. /* (WORD) Y Position of Mouse within space gadget
  25.      * (OM_NOTIFY) */
  26. #define SPACE_Transparent   (SPACE_Dummy+5)
  27. /* (BOOL) Will not EraseRect() background before redraw if true.
  28.      * (OM_NEW,OM_SET,OM_UPDATE) */
  29. #define SPACE_AreaBox     (SPACE_Dummy+6)
  30. /* (struct IBox *) Inner area IBox application rendering bounds
  31.      * (OM_GET) */
  32. #define SPACE_RenderHook  (SPACE_Dummy+7)
  33. /* (struct Hook *) render hook is called when the gadget refreshes.
  34.      * (OM_NEW,OM_SET,OM_UPDATE) */
  35. #define SPACE_BevelStyle  (SPACE_Dummy+8)
  36. /* (WORD) Defaults to BVS_NONE (no bevel - see images/bevel.m)
  37.      * !!! broken before 45.1 !!!
  38.      * (OM_NEW,OM_SET,OM_UPDATE) */
  39. /*****************************************************************************/
  40.